Link to this headingStorage Bucket

Note: gsutil doesnt support python 3.13

Link to this headingBucket Information

Get Information from gsutil:

>>> docker run --rm gcr.io/google.com/cloudsdktool/google-cloud-cli:stable gsutil iam get gs://my-bucket-cad ServiceException: 401 Anonymous caller does not have storage.buckets.getIamPolicy access to the Google Cloud Storage bucket. Permission 'storage.buckets.getIamPolicy' denied on resource (or it may not exist).

Get Information from HTTP:

#annominous BUCKET_NAME=my-bucket-cad curl "https://www.googleapis.com/storage/v1/b/${BUCKET_NAME}/" curl "https://www.googleapis.com/storage/v1/b/${BUCKET_NAME}/o" curl "https://www.googleapis.com/storage/v1/b/${BUCKET_NAME}/iam" curl "https://www.googleapis.com/storage/v1/b/${BUCKET_NAME}/iam/testPermissions?permissions=storage.objects.list"

https://www.googleapis.com/storage/v1/b/my-bucket-cad/
https://www.googleapis.com/storage/v1/b/my-bucket-cad/o
https://www.googleapis.com/storage/v1/b/my-bucket-cad/iam
https://www.googleapis.com/storage/v1/b/BUCKET_NAME/iam/testPermissions?permissions=storage.objects.list